home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / beos / PPBeDevKit.ZIP / PLAYERPR.TAR / PlayerPRO / MAD Simple / mainMADSimple.h < prev   
Encoding:
C/C++ Source or Header  |  1998-12-26  |  290 b   |  19 lines

  1. #include "RDriver.h"
  2. #include "Be-DriverClass.h"
  3.  
  4. #ifndef __MAINMADH__
  5. #define __MAINMADH__
  6.  
  7. class MyApp : public BApplication
  8. {
  9.     public:
  10.                             MyApp(ulong signature);
  11.                             ~MyApp();
  12.                             
  13.     virtual void RefsReceived(BMessage *msg);
  14.     
  15.             MADDriverClass    *myMADDriverClass;
  16.             
  17. };
  18.  
  19. #endif